home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / articlelive_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  77 lines

  1. #
  2. # Script by Noam Rathaus GPLv2
  3. #
  4. # Interspire ArticleLive 2005 (php version) XSS vulnerability
  5. # mircia <mircia@security.talte.net>
  6. # 2005-03-24 14:54
  7.  
  8. if(description)
  9. {
  10.  script_id(17612);
  11.  script_version("$Revision: 1.1 $");
  12.  script_bugtraq_id(12879);
  13.  
  14.  name["english"] = "Interspire ArticleLive 2005 XSS Vulnerability";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "
  19. The remote host is running ArticleLive, a set of CGIs designed to simplify
  20. the management of a news site.
  21.  
  22. Due to improper filtering done by the script 'newcomment' remote attacker
  23. can cause the ArticleLive product to include arbitrary HTML and/or
  24. JavaScript, and therefore use the remote host to perform cross-site
  25. scripting attacks.
  26.  
  27. Solution : Upgrade to the newest version of this software
  28. Risk factor: Medium";
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Checks for the presence of a ArticleLive XSS";
  33.  
  34.  script_summary(english:summary["english"]);
  35.  
  36.  script_category(ACT_ATTACK);
  37.  
  38.  script_copyright(english:"This script is Copyright (C) 2005 Noam Rathaus");
  39.  family["english"] = "CGI abuses : XSS";
  40.  script_family(english:family["english"]);
  41.  script_dependencie("find_service.nes", "cross_site_scripting.nasl", "http_version.nasl");
  42.  script_require_ports("Services/www", 80);
  43.  exit(0);
  44. }
  45.  
  46. #
  47. # The script code starts here
  48. #
  49.  
  50.  
  51. include("http_func.inc");
  52. include("http_keepalive.inc");
  53.  
  54. port = get_http_port(default:80);
  55.  
  56. if(!get_port_state(port))exit(0);
  57. if(!can_host_php(port:port))exit(0);
  58. if (  get_kb_item(string("www/", port, "/generic_xss")) ) exit(0);
  59.  
  60. function check(loc)
  61. {
  62.  req = http_get(item: string(loc, '/newcomment/?ArticleId="><script>foo</script>'), port:port);
  63.  r = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  64.  if( r == NULL )exit(0);
  65.  if('value=""><script>foo</script>"' >< r)
  66.  {
  67.   security_warning(port);
  68.   exit(0);
  69.  }
  70. }
  71.  
  72. foreach dir ( cgi_dirs() )
  73. {
  74.  check(loc:dir);
  75. }
  76.  
  77.